1 // Runtime.java, created Fri Aug 16 18:11:48 2002 by joewhaley 2 // Copyright (C) 2001-3 John Whaley <jwhaley@alum.mit.edu> 3 // Licensed under the terms of the GNU LGPL; see COPYING for details. 4 package joeq.ClassLib.sun14_linux.java.lang; 5 6 /*** 7 * Runtime 8 * 9 * @author John Whaley <jwhaley@alum.mit.edu> 10 * @version $Id: Runtime.java 1451 2004-03-09 06:27:08Z jwhaley $ 11 */ 12 public class Runtime { 13 14 public static native Runtime getRuntime(); 15 synchronized native void loadLibrary0(Class fromClass, String libname); 16 }